| 
 | 
 | 
 | 
| SftTreeColumns.Order Property | 
Defines the column order, usually used to save/load an existing column layout.
Syntax
| VB.NET | String = object.Order As String | ||
| VB | String = object.Order As String | ||
| C#.NET | string String = object.Order; | ||
| VC++ | _bstr_t String = object->Order; | ||
| C | HRESULT object->get_Order(BSTR* String); | ||
| Delphi | String := object.Order : WideString; | ||
| VB.NET | object.Order = String As String | ||
| VB | object.Order = String As String | ||
| C#.NET | string object.Order = String; | ||
| VC++ | _bstr_t object->Order = String; | ||
| C | HRESULT object->put_Order(BSTR String); | ||
| Delphi | object.Order := String : WideString; | ||
object
A SftTreeColumns object.
String
Defines the column order, usually used to save/load an existing column layout.
Comments
The Order property defines the column order, usually used to save/load an existing column layout.
The property returns a comma-delimited list of real column numbers in the order in which they are displayed.
The value returned by the Order property could be saved in the Windows Registry or a data file. By assigning the saved value to the Order property at a later time, the display order of the columns can be restored.
The Widths property can be used to save/restore the widths of all columns.
See Also SftTreeColumns Object | Object Hierarchy